Skip to content

Fix typo in install.md for repositories section#47

Open
krishzzi wants to merge 1 commit intoAmrDeveloper:masterfrom
krishzzi:patch-1
Open

Fix typo in install.md for repositories section#47
krishzzi wants to merge 1 commit intoAmrDeveloper:masterfrom
krishzzi:patch-1

Conversation

@krishzzi
Copy link

🐞 Fix Typo in Installation Instructions

Description:
Fixed a typo in the Gradle configuration example in docs/install.md.
The word epositories was missing the initial r, which would cause build errors when copying the snippet.

Before:

allprojects {
    epositories {
        maven { url 'https://jitpack.io' }
    }
}
After:

gradle
Copy code
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}
Why this change:
Corrects a documentation typo to ensure users can copy-paste the code without encountering Gradle syntax errors.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant